home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Gold Collection / Software Vault - The Gold Collection (American Databankers) (1993).ISO / cdr44 / cdbox210.zip / CD-BOX.CFG < prev    next >
Text File  |  1993-04-14  |  5KB  |  111 lines

  1. ; CD-Box v2.10 configuration file
  2. ;
  3. ; Any errors in this file are skipped. To check this file after you have
  4. ;   modified it, run CD-Box with the /D parameter; any errors will then be
  5. ;   explicitly displayed (what's wrong and on which line).
  6.  
  7. ; ***
  8. ; *** SYSTEM PARAMETERS
  9. ; ***
  10.  
  11. ; *** DEFAULT .MOD MIXING SPEED
  12. ; Try 15909 if you've got a fast machine (12 MHz+) - the higher the better!
  13. ; Changing this parameter makes sense only if you use CD-Box's .MOD routines
  14. MixingSpeed=10000
  15.  
  16. ; *** DRIVE/DIRECTORY FOR TEMPORARY FILES
  17. ; This is the drive where unZIPped files will temporarily reside
  18. ; Make sure that it's big enough to hold your largest song (+ bank file)
  19. ; If omitted, defaults to CD-Box's directory
  20. ;   (or the directory in your TEMP environnment variable)
  21. ;Temp=D:
  22.  
  23. ; *** PARAMETERS FOR PKUNZIP
  24. ; These are the actual parameters CD-Box gives PKUNZIP to explode files
  25. ; This is here just in case PKWare decides to change PKUNZIP's parameters...
  26. ; If it happens, modify at your own risk!
  27. ZIPExplode=-o $zipfile $tempdrive $files > nul
  28.  
  29.  
  30. ; ***
  31. ; *** SUPPORTED DRIVERS/PLAYERS
  32. ; ***
  33.  
  34. ; CD-Box can support ANY driver for the external formats, AS LONG AS THERE IS
  35. ;   A "QUIET" MODE AVAILABLE (usually /Q, -q, or similar), I.E. NO OUTPUT OF
  36. ;   *ANY* KIND, AND NO SWITCHING TO TEXT MODE even if there is no output (the
  37. ;   version of Playrol I had did that). Redirecting the output to nul (i.e. >
  38. ;   nul) works for very few players. NOTE THAT THIS ALSO APPLIES TO DRIVERS.
  39. ;
  40. ; Note that you can override CD-Box's internal playing routines. For instance,
  41. ;   if CD-Box cannot play .CMF on your music card (AdLib for instance), and
  42. ;   you have an external player which can, insert the appropriate parameters
  43. ;   in this file (see below).
  44. ;
  45. ; Player/driver specifications are written in five sections (one for each
  46. ;   format CD-Box supports), like this:
  47. ;
  48. ; [<3 letter extension>]
  49. ; driver=<filename of driver (no path); if this line is missing, no driver>
  50. ; player=<filename of player (no path)>
  51. ; parameters=<parameters to give the player (including song and bank names)>
  52. ; shell=yes <not needed by most drivers, see below>
  53. ; dual=yes <if you want CD-Box to try to play the song by itself first>
  54. ;
  55. ; There must be no space either before or after any = sign. Also, beware that
  56. ;   the parameters players use are sometimes case-sensitive.
  57. ;
  58. ; The driver should be loaded by the player program when it is run, and
  59. ;   unloaded when done, otherwise CD-Box will not regain control and your
  60. ;   computer will crash.
  61. ;
  62. ; The parameters= line may contain the following variables, which CD-Box will
  63. ;   replace at run-time:
  64. ;
  65. ;      $song (lower case)      the song filename (with path if necessary)
  66. ;      $bank (lower case)      the bank filename (with path if necessary)
  67. ;
  68. ; What you type under DOS to run the player in quiet mode should be what you
  69. ;   put as "player=" + what you put as "parameters=". Both must always be
  70. ;   present.
  71. ;
  72. ; CD-Box will run the player as a subprocess. Note that although most players
  73. ;   are "robust", some do not clean up memory very well or leave files open
  74. ;   when done. CD-Box will either hang or behave as usual, but you may
  75. ;   experience trouble much later on, while using another program. In these
  76. ;   (rare) cases, include a 'shell=yes' line in the corresponding section, so
  77. ;   that CD-Box will also run a COMMAND.COM to encapsulate the player and
  78. ;   protect memory. This uses an extra 30-40 KB of memory, however.
  79.  
  80. ; *** .CMF: internal support, so no player needed
  81. ; Note that SBFMDRV must be LOADED in memory for .CMF files to be played
  82. ; You might want to override CD-Box's .CMF routines with an external player
  83. ; (ex: AdLib owners, you might have a player which plays .CMF on the AdLib)
  84. ; In this case, insert code here like the one in the other sections
  85.  
  86. ; *** .MUS: default player is PLAY.EXE, no driver needed
  87. [MUS]
  88. player=PLAY.EXE
  89. parameters=$song $bank
  90.  
  91. ; *** .MOD: internal support, so no player needed
  92. ; You might want to use an external player that would support more .MOD
  93. ; Remove the ';' below if you have and want to use ModPlay 2.19b
  94. ;[MOD]
  95. ;player=MP.COM
  96. ;parameters=-q $song
  97. ;dual=yes
  98.  
  99. ; *** .ROL: default player is Sputrol v1.10, SOUND.COM driver needed
  100. ; SPUTROL needs a shell to close its files (otherwise files left open)
  101. [ROL]
  102. driver=SOUND.COM
  103. player=SPUTROL.COM
  104. parameters=$song $bank /Q1
  105. shell=yes
  106.  
  107. ; *** .VOC: default player is VPlay 1.50, no driver needed
  108. [VOC]
  109. player=VPLAY.EXE
  110. parameters=$song /Q /B32
  111.